@import url('./index.css');

.arrow-btn {
    border: 1px solid var(--arrow);
    outline: none;
    width: 3em;
    height: 3em;
    border-radius: 50%;
    background-color: transparent;
    color: var(--arrow);
    transition: all .3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-btn:hover {
    background-color: var(--arrow);
    color: #FFFFFF;
}

.blue-card {
    background-color: var(--blue-color);
    color: var(--yellow-color);
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    border-radius: 5px;
    --arrow: var(--yellow-color);
}

.yellow-card {
    background-color: var(--yellow-color);
    color: var(--blue-color);
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    border-radius: 5px;
    --arrow: var(--blue-color);
}

.blue-card p {
    width: 80%;
    font-size: 1.7rem;
    color: var(--white-color);
    text-align: right;

}

.yellow-card p {
    width: 80%;
    font-size: 1.7rem;
    color: var(--white-color);
    text-align: right;
}

.gallery-item {
    aspect-ratio: 1/1;
}

.video-item {
    aspect-ratio: 2/1;
}


.gallery-item img {
    padding: 0 .5rem;
    object-fit: cover;
    border-radius: 5px;
    aspect-ratio: 1 / 1;
}

.video-item {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.video-item img {
    height: 100%;
    padding: 0 .5rem;
    object-fit: cover;
    border-radius: 8px;
}

@media only screen and (max-width: 576px) {

    .blue-card {
        aspect-ratio: auto;
        border-radius: 0;
        padding: 1rem;
    }

    .yellow-card {
        aspect-ratio: auto;
        border-radius: 0;
        padding: 1rem;
    }
}